home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2002 #7 / K-CD-7-2002.ISO / Tools / K-CS.dcr / 00186_Progress bar.ls < prev    next >
Encoding:
Text File  |  2002-04-10  |  804 b   |  31 lines

  1. property StartTicks
  2.  
  3. on new me
  4.   cursor(4)
  5.   set StartTicks to the ticks
  6.   set the visible of sprite 60 to 1
  7.   set the visible of sprite 62 to 0
  8.   set the visible of sprite 63 to 0
  9.   set the visible of sprite 64 to 0
  10.   set the visible of sprite 65 to 0
  11.   set the visible of sprite 66 to 0
  12.   set the visible of sprite 67 to 0
  13.   set the visible of sprite 68 to 0
  14.   set the visible of sprite 69 to 0
  15.   set the visible of sprite 70 to 0
  16.   set the visible of sprite 71 to 0
  17.   set the visible of sprite 72 to 0
  18. end
  19.  
  20. on exitFrame
  21.   set the visible of sprite (((the ticks - StartTicks) / 30) + 62) to 1
  22.   set NewMember to 1198 + ((the ticks - StartTicks) / 30)
  23.   set the memberNum of sprite 60 to NewMember
  24.   updateStage()
  25.   if the ticks > (StartTicks + 360) then
  26.     go(#next)
  27.   else
  28.     go(#loop)
  29.   end if
  30. end
  31.